home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 101-125 / scopedisk122 / 3d / makefile < prev    next >
Makefile  |  1995-03-19  |  596b  |  32 lines

  1. CFLAGS= -ff -hi i.dmp
  2. # CFLAGS +l -s           for Manx 3.6, also -lm32 -lc32 in ln
  3.  
  4. .c.o32:
  5.         cc $(CFLAGS) -o $@ $*.c
  6.  
  7. test.o32: test.c 3d.c
  8.         cc $(CFLAGS) -o test.o32 test.c
  9.  
  10. test: test.o32
  11.         ln test.o32 +Q -lmf -lc
  12.  
  13. test2: test2.o32
  14.         ln test2.o32 +Q -lmf -lc
  15.  
  16. cube: cube.o32
  17.         ln cube.o32 +Q -lmf -lc
  18.  
  19. p_cube: p_cube.o32
  20.         ln p_cube.o32 ram:profutl.o +Q -lmf -lc
  21.  
  22. x: x.c
  23.         cc -ff x.c -o x.o32
  24.         ln x.o32 +Q -lmf -lc
  25.  
  26. filt: filt.c
  27.         cc filt.c -o filt.o32
  28.         ln filt.o32 +Q -lc
  29.  
  30. i.dmp: include.c
  31.                 cc -ho i.dmp include.c
  32.